home *** CD-ROM | disk | FTP | other *** search
/ Mission 3 / Mission 3.zip / Mission 3.iso / zugabe / va45 / visual45 / misc / dev_mon.bug < prev    next >
Text File  |  1998-07-26  |  962b  |  42 lines

  1.     Devpac Bugs
  2.     ------------
  3.  
  4.     . put an opt o- before and an opt o+ after a line like :
  5.         jmp ([my_label])
  6.  
  7.     . The following sequence makes 2 bombs when assembling
  8.       rept 2
  9.       move d0-d7,-(sp)
  10.       endr
  11.       As general case, an assembling error in a [REPT .. ENDR] section
  12.       makes the system crash (2 bombs)
  13.  
  14.     . When you assemble to disk a small prg with Extended labels and you get 2
  15.       bombs : add another label with nothing after just to make an even total number
  16.       and you'll compile fine !
  17.  
  18.     . A code like this:
  19.  
  20.  DATA
  21. aa:    dc.l 0
  22. bb set aa
  23.     dc.l bb
  24.     dc.l aa
  25. bb set bb
  26.     dc.l bb
  27.     dc.l aa
  28.  section text
  29.     moveq #0,d0
  30.  section data
  31.       will not produce the same value for the both 'dc.l bb'. This occures because
  32.       the definition of the 'aa' label is made in a data section.
  33.     
  34.     
  35.     Mon030 3.10
  36.     -----------
  37.  
  38.     . Your last BSS variable will not be cleared (put to 0) at
  39.       Mon030 startup
  40.     . You cannot trace a jsr ([my_label])
  41.  
  42.